From 66ea0f1c7a3f0aba311560fc0a0a61dd0f3121ee Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sun, 30 Jan 2005 21:17:22 +0000 Subject: [PATCH] quotes --- includes/SpecialStatistics.php | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/includes/SpecialStatistics.php b/includes/SpecialStatistics.php index 36c3c16a2a..92ec95dca8 100644 --- a/includes/SpecialStatistics.php +++ b/includes/SpecialStatistics.php @@ -10,9 +10,9 @@ */ function wfSpecialStatistics() { global $wgUser, $wgOut, $wgLang; - $fname = "wfSpecialStatistics"; + $fname = 'wfSpecialStatistics'; - $wgOut->addHTML( "

" . wfMsg( "sitestats" ) . "

\n" ); + $wgOut->addHTML( '

' . wfMsg( 'sitestats' ) . "

\n" ); $dbr =& wfGetDB( DB_SLAVE ); extract( $dbr->tableNames( 'page', 'site_stats', 'user', 'user_rights' ) ); @@ -30,16 +30,16 @@ function wfSpecialStatistics() { $edits = $row->ss_total_edits; $good = $row->ss_good_articles; - $text = wfMsg( "sitestatstext", + $text = wfMsg( 'sitestatstext', $wgLang->formatNum( $total ), $wgLang->formatNum( $good ), $wgLang->formatNum( $views ), $wgLang->formatNum( $edits ), - $wgLang->formatNum( sprintf( "%.2f", $total ? $edits / $total : 0 ) ), - $wgLang->formatNum( sprintf( "%.2f", $edits ? $views / $edits : 0 ) ) ); + $wgLang->formatNum( sprintf( '%.2f', $total ? $edits / $total : 0 ) ), + $wgLang->formatNum( sprintf( '%.2f', $edits ? $views / $edits : 0 ) ) ); $wgOut->addWikiText( $text ); - $wgOut->addHTML( "

" . wfMsg( "userstats" ) . "

\n" ); + $wgOut->addHTML( '

' . wfMsg( 'userstats' ) . "

\n" ); $sql = "SELECT COUNT(user_id) AS total FROM $user"; $res = $dbr->query( $sql, $fname ); @@ -52,13 +52,11 @@ function wfSpecialStatistics() { $admins = $row->total; $sk = $wgUser->getSkin(); - $ap = "[[" . wfMsg( "administrators" ) . "]]"; + $ap = '[[' . wfMsg( 'administrators' ) . ']]'; - $text = wfMsg( "userstatstext", + $text = wfMsg( 'userstatstext', $wgLang->formatNum( $total ), $wgLang->formatNum( $admins ), $ap ); $wgOut->addWikiText( $text ); - } - -?> +?> \ No newline at end of file -- 2.20.1